home *** CD-ROM | disk | FTP | other *** search
/ HAM Radio 1997 / HAM Radio 1997.iso / vcls / sockv2 / ftp_pr.dpr < prev    next >
Text File  |  1996-04-08  |  662b  |  25 lines

  1. program Ftp_pr;
  2.  
  3. uses
  4.   Forms,
  5.   Ftp in 'FTP.PAS' {FTPForm},
  6.   Login in 'LOGIN.PAS' {LoginDLG},
  7.   Fileget in 'FILEGET.PAS' {GetDLG},
  8.   Fileput in 'FILEPUT.PAS' {PutDLG},
  9.   Fileren in 'FILEREN.PAS' {RenDLG},
  10.   Fileview in 'FILEVIEW.PAS' {ViewDLG},
  11.   Meter in 'METER.PAS' {MeterDLG};
  12.  
  13. {$R *.RES}
  14.  
  15. begin
  16.   Application.CreateForm(TFTPForm, FTPForm);
  17.   Application.CreateForm(TLoginDLG, LoginDLG);
  18.   Application.CreateForm(TGetDLG, GetDLG);
  19.   Application.CreateForm(TPutDLG, PutDLG);
  20.   Application.CreateForm(TRenDLG, RenDLG);
  21.   Application.CreateForm(TViewDLG, ViewDLG);
  22.   Application.CreateForm(TMeterDLG, MeterDLG);
  23.   Application.Run;
  24. end.
  25.